Get height and width of the console window

Get height and width of the console window.
def terminal_size():

    import fcntl, termios, struct

    th, tw, hp, wp = struct.unpack('HHHH',
        fcntl.ioctl(0, termios.TIOCGWINSZ,
        struct.pack('HHHH', 0, 0, 0, 0)))
    return tw, th

print('Number of columns and Rows: ',terminal_size())

Output:

Number of columns and Rows: (110, 21)